projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d81c2c3
)
(cpp-parse-error): Fix error format string.
author
Karl Heuer
<kwzh@gnu.org>
Mon, 29 Jan 1996 23:11:17 +0000
(23:11 +0000)
committer
Karl Heuer
<kwzh@gnu.org>
Mon, 29 Jan 1996 23:11:17 +0000
(23:11 +0000)
lisp/progmodes/cpp.el
patch
|
blob
|
history
diff --git
a/lisp/progmodes/cpp.el
b/lisp/progmodes/cpp.el
index fb040a4480ad4d4ea14f3bba26a2c42b224adb2c..32573b6d0bc4ff3af23a2f742568ae7e25cd6277 100644
(file)
--- a/
lisp/progmodes/cpp.el
+++ b/
lisp/progmodes/cpp.el
@@
-280,7
+280,7
@@
A prefix arg suppresses display of that buffer."
(defun cpp-parse-error (error)
;; Error message issued by the cpp parser.
- (error
(concat error " at line %d")
(count-lines (point-min) (point))))
+ (error
"%s at line %d" error
(count-lines (point-min) (point))))
(defun cpp-parse-reset ()
"Reset display of cpp conditionals to normal."